home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
- echo.
- echo Welcome to Superscape Virtual World
- echo.
- echo.
- echo In order to fully understand Superscape Virtual Realities, carefully
- echo read the README file (option 2).
- echo.
- echo It is strongly advised that you print out the README file.
- echo If you wish to do so use option 3.
- echo.
- :start
- echo.
- echo Choose one of the selections below:
- echo.
- echo 1. RUN Virtual Reality Information.
- echo 2. READ the README file.
- echo (Use this option before running the software.)
- echo 3. Print out the README file.
- echo 4. QUIT.
- echo.
- echo Please enter the number for your choice; Enter 1-4 only.
- query
-
- if errorlevel = 5 goto invalid
- if errorlevel = 4 goto end
- if errorlevel = 3 goto print
- if errorlevel = 2 goto read
- if errorlevel = 1 goto run
-
- :invalid
- cls
- echo Invalid option
- goto start
- goto end
-
- REM Run demo
- :run
- demo.exe
- goto end
-
- REM read readme
- :read
- cls
- call read.bat
- goto start
-
- :print
- print %1:\dim20001\readme
- cls
- goto start
-
- :end
-